home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / nosvw304.zip / NOSGAS.ZIP / PUBLIC / NOSVIEW / IP < prev    next >
Text File  |  1992-12-31  |  5KB  |  125 lines

  1. ==                                                  NOSview [301]
  2. ip
  3. ==
  4.  
  5. The 'ip' commands are used for configuring and monitoring the
  6. Internet Protocol (IP).
  7.  
  8. You need to have a unique IP address before you can link in with
  9. the rest of the networked world.  The best way to get one is to
  10. ask around the local packet community and find out who your local
  11. address coordinator is.  Your local coordinator will then assign
  12. you an address from the block for your area.
  13.  
  14. IP addresses are 32-bit numbers that uniquely identify a given
  15. machine (or "host") running the TCP/IP protocol suite.  These
  16. numbers are usually broken down into four dot-separated fields of
  17. eight bits, each field being expressed as a decimal number in the
  18. range 0-255.
  19.  
  20. Thus, for example, the 32-bit binary IP address
  21.  
  22.           00101100 00000001 10000000 00001001
  23.  
  24. would be expressed as 44.1.128.9 decimal.
  25.  
  26. In some older versions of NOS, square brackets were used to
  27. indicate IP addresses; e.g. [44.1.128.9].
  28.  
  29. The worldwide allocation of IP addresses is coordinated by the
  30. Network Information Center (NIC) in the United States.  Amateur
  31. radio operators have been allocated a so-called "Class A"
  32. network, with addresses in the 44.x.x.x series.
  33.  
  34. If you have not yet obtained your IP address and want to get on
  35. the air immediately, you may temporarily use 44.128.0.x, where
  36. 'x' is a decimal number between 1 and 254.  Try to be sure that
  37. no one else in your area is using the same number.
  38.  
  39. _________________________________________________________________
  40. ip access  permit|deny|delete  <dest_ip_addr>|all[/<bits>]
  41.                       <interface> [ <lowport>|none [ <higport> ]]
  42. _________________________________________________________________
  43. Set or display access control for IP routing functions.  This
  44. command implements router access functions to NosFp.
  45.  
  46. 'permit' enables dest_ip_address packets to be routed via
  47. <interface>.
  48.  
  49. 'deny' disables those.
  50.  
  51. If <lowport> is not given, all ports are assumed.
  52.  
  53. If only <lowport> is given, that port is only checked for
  54. permission.
  55.  
  56. If <lowport> and <highport> are given, that is the range of ports
  57. permitted/denied.
  58.  
  59. <dest_ip_address> can be the word 'all' for all addresses
  60. possible.
  61.  
  62. <lowport> can be the word 'none' for all ports.
  63.  
  64. The 'ip access delete' must match a previously defined 'permit'
  65. or 'deny' to be able to delete that definition.
  66.  
  67. If no access list is created, all interfaces might carry all
  68. types.  If an access control is defined for an interface there
  69. must be a 'permit' defined for that interface to allow traffic.
  70. Thus a partial denial without a 'permit' is an complete denial.
  71.  
  72. >> Examples:  ip access permit 44/8 tnc0
  73.               ip access deny all tnc0 1 1023
  74.               ip access permit all tnc0
  75.  
  76.  
  77. _________________________________________________________________
  78. ip address [<ip_address> | <hostname>]
  79. _________________________________________________________________
  80. Display or set the default local IP address.  This command must
  81. be given before an 'attach' command if it is to be used as the
  82. default IP address for the interface.
  83.  
  84. The <ip_address> is in the usual dotted decimal format.
  85.  
  86. If you use the hostname to set the IP address, <hostname> must
  87. exist in the hosts file /domain.txt.
  88.  
  89. >> Examples:  ip address 44.199.41.1
  90.               ip address ns9bob
  91.  
  92.  
  93. _________________________________________________________________
  94. ip rtimer [<seconds>]                                 Default: 30
  95. _________________________________________________________________
  96. Display or set the IP reassembly timeout.  The timer is re-
  97. initialised whenever progress is made in reassembling a datagram
  98. (i.e. a new fragment is received).
  99.  
  100. It is not necessary that all of the fragments belong to a
  101. datagram arrive within a single timeout interval, only that the
  102. interval between fragments be less than the timeout.
  103.  
  104. >> Example:  ip rtimer 60
  105.  
  106.  
  107. _________________________________________________________________
  108. ip status
  109. _________________________________________________________________
  110. Display Internet Protocol (IP) statistics, such as total packet
  111. counts and error counters of various types.
  112.  
  113.  
  114. _________________________________________________________________
  115. ip ttl [<hops>]                                      Default: 255
  116. _________________________________________________________________
  117. Display or set the time-to-live value placed in each outgoing IP
  118. datagram.  This limits the number of hops the datagram will be
  119. allowed to take.  The idea is to bound the lifetime of the packet
  120. should it become caught in a routing loop, so make the value
  121. slightly larger than the number of hops across the network you
  122. expect the packets to make.
  123.  
  124. >> Example:  ip ttl 10
  125.